home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iisprotect_bypass.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  97 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Note that we need to be authenticated for this check
  7. # to work properly.
  8. #
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11663);
  14.  script_bugtraq_id(7661);
  15.  script_version("$Revision: 1.8 $");
  16.  
  17.  name["english"] = "iiprotect bypass";
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host seems to be running iisprotect, an IIS add-on to protect the
  22. pages served by this server.
  23.  
  24. There is a bug in the remote version of iisprotect which may allow
  25. an attacker to bypass protection by hex-encoding the requested URLs.
  26.  
  27. Solution : Upgrade to iisprotect 2.2
  28. Risk factor : High";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Determines if iisprotect can be escaped";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "http_version.nasl", "webmirror.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. # Check starts here
  49.  
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52.  
  53. function encode(dir)
  54. {
  55.  for(i=strlen(dir) - 2;i>1;i--)
  56.  {
  57.   if(dir[i] == "/")break;
  58.  }
  59.  if(i <= 1)return NULL;
  60.  
  61.  enc = "%" + hex(ord(dir[i+1])) - "0x";
  62.  dir = insstr(dir, enc, i+1, i+1);
  63.  return dir;
  64. }
  65. function check(loc)
  66. {
  67.  req = http_get(item:loc, port:port);
  68.  res = http_keepalive_send_recv(port:port, data:req);
  69.  if( res == NULL ) exit(0);
  70.  if(ereg(pattern:"HTTP/[0-9]\.[0-9] (40[13]|30[0-9]) ", string:res))return 300;
  71.  else if(ereg(pattern:"HTTP/[0-9]\.[0-9] 200 ", string:res))return 200;
  72.  else return -1;
  73. }
  74.  
  75. port = get_http_port(default:80);
  76.  
  77.  
  78. dirs = get_kb_list(string("www/", port, "/content/auth_required"));
  79. if(!isnull(dirs))dirs = make_list(dirs, "/iisprotect/sample/protected");
  80. else dirs = make_list("/iisprotect/sample/protected");
  81.  
  82. if(get_port_state(port))
  83. {
  84.  foreach dir (dirs)
  85.  {
  86.   if( check(loc:dir) == 300 )
  87.   {
  88.    dir = encode(dir:dir);
  89.    if( dir && check(loc:dir) == 200 )
  90.    {
  91.     security_hole(port);
  92.     exit(0);
  93.     }
  94.   }
  95.  }
  96. }
  97.